first commit
This commit is contained in:
28
Complex.Domain/Entities/ComplexUnitEvent.cs
Normal file
28
Complex.Domain/Entities/ComplexUnitEvent.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using Complex.Domain.Commons;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Complex.Domain.Entities
|
||||
{
|
||||
[Auditable]
|
||||
public class ComplexUnitEvent : BaseEntity<long>
|
||||
{
|
||||
/// <summary>
|
||||
/// اگر برای واحد بود
|
||||
/// </summary>
|
||||
public Guid? UnitId { set; get; }
|
||||
/// <summary>
|
||||
/// اگر برای مجتمع بود
|
||||
/// </summary>
|
||||
public int? ComplexId { set; get; }
|
||||
[MaxLength(10)]
|
||||
public string EventDate { set; get; }
|
||||
public string RegisterMobileNumber { set; get; }
|
||||
public string Body { set; get; }
|
||||
public string? Description { set; get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user