16 lines
361 B
C#
16 lines
361 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.EntityAudit
|
|
{
|
|
public class Mon_Finish
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public int Month { get; set; }
|
|
public DateTime Day { get; set; }
|
|
public int Status { get; set; }
|
|
public DateTime DataEnd { get; set; }
|
|
}
|
|
}
|