16 lines
379 B
C#
16 lines
379 B
C#
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace SiteManagementSystem_SoftwareEngineering_.Entity
|
|||
|
{
|
|||
|
public class UserField
|
|||
|
{
|
|||
|
[Key]
|
|||
|
public Guid Uid { get; set; }
|
|||
|
//[Key]
|
|||
|
public Guid Fid { get; set; }
|
|||
|
public DateTime StartTime { get; set; }
|
|||
|
public DateTime EndTime { get; set; }
|
|||
|
// other properties
|
|||
|
}
|
|||
|
}
|