Add magazines issues.

This commit is contained in:
2019-06-17 03:50:32 +01:00
parent 2ff8cc37f6
commit e865b89f52
7 changed files with 8171 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Cicm.Database.Models
@@ -11,6 +12,7 @@ namespace Cicm.Database.Models
[DataType(DataType.Date)]
public DateTime? FirstPublication { get; set; }
public virtual Iso31661Numeric Country { get; set; }
public virtual Iso31661Numeric Country { get; set; }
public virtual ICollection<MagazineIssue> Issues { get; set; }
}
}