17 lines
388 B
C#
17 lines
388 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace IRaCIS.Core.Domain.Models
|
|
{
|
|
[Table("CalculateTask")]
|
|
public class CalculateTask : Entity
|
|
{
|
|
public Guid ReviewerId { get; set; }
|
|
|
|
[Required]
|
|
public string YearMonth { get; set; }
|
|
public bool IsLock { get; set; }
|
|
}
|
|
}
|