mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
Add document company.
This commit is contained in:
13
Cicm.Database/Models/DocumentCompany.cs
Normal file
13
Cicm.Database/Models/DocumentCompany.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Cicm.Database.Models
|
||||
{
|
||||
public class DocumentCompany : BaseModel<int>
|
||||
{
|
||||
[Required]
|
||||
public string Name { get; set; }
|
||||
public int? CompanyId { get; set; }
|
||||
|
||||
public virtual Company Company { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user