first commit
This commit is contained in:
22
Complex.Domain/Entities/ComplexManager.cs
Normal file
22
Complex.Domain/Entities/ComplexManager.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
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 ComplexManager
|
||||
{
|
||||
public int Id { set; get; }
|
||||
public Guid ComplexId { set; get; }
|
||||
public virtual ComplexEntity Complex { set; get; }
|
||||
public string? ManagerMobileNumberId { set; get; }
|
||||
public Person? ManagerMobileNumber { set; get; }
|
||||
public string StartDate { set; get; }
|
||||
public string EndDate { set; get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user