16 lines
500 B
C#
16 lines
500 B
C#
|
using SiteManagementSystem_SoftwareEngineering_.Service;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace SiteManagementSystem_SoftwareEngineering_.Entity
|
|||
|
{
|
|||
|
public class Field
|
|||
|
{
|
|||
|
[Key]
|
|||
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|||
|
public string Name { get; set; } = null!;
|
|||
|
public string Position { get; set; } = null!;
|
|||
|
public string OpenTime { get; set; } = null!;
|
|||
|
public FieldType Type { get; set; } = FieldType.Unspecified;
|
|||
|
}
|
|||
|
}
|