mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
Add support to mark a company founded or sold date as having the month or the day unknown. Fixes #16.
This commit is contained in:
@@ -69,6 +69,14 @@ namespace Marechai.Database.Models
|
||||
[Required]
|
||||
public CompanyStatus Status { get; set; }
|
||||
public int? DocumentCompanyId { get; set; }
|
||||
[DefaultValue(false)]
|
||||
public bool FoundedMonthIsUnknown { get; set; }
|
||||
[DefaultValue(false)]
|
||||
public bool FoundedDayIsUnknown { get; set; }
|
||||
[DefaultValue(false)]
|
||||
public bool SoldMonthIsUnknown { get; set; }
|
||||
[DefaultValue(false)]
|
||||
public bool SoldDayIsUnknown { get; set; }
|
||||
|
||||
public virtual Iso31661Numeric Country { get; set; }
|
||||
[DisplayName("Sold to")]
|
||||
|
||||
Reference in New Issue
Block a user