2019-05-27 18:03:08 +01:00
|
|
|
using System.Collections.Generic;
|
2019-05-27 17:42:57 +01:00
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
2020-02-10 02:10:18 +00:00
|
|
|
namespace Marechai.Database.Models
|
2019-05-27 17:42:57 +01:00
|
|
|
{
|
|
|
|
|
public class License : BaseModel<int>
|
|
|
|
|
{
|
|
|
|
|
[Required]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
[DisplayName("SPDX identifier")]
|
|
|
|
|
public string SPDX { get; set; }
|
2020-02-10 22:44:18 +00:00
|
|
|
[DisplayName("FSF approved"), Required]
|
2019-05-27 17:42:57 +01:00
|
|
|
public bool FsfApproved { get; set; }
|
2020-02-10 22:44:18 +00:00
|
|
|
[DisplayName("OSI approved"), Required]
|
2019-05-27 17:42:57 +01:00
|
|
|
public bool OsiApproved { get; set; }
|
2020-02-10 22:44:18 +00:00
|
|
|
[DisplayName("License text link"), StringLength(512), Url]
|
2019-05-27 17:42:57 +01:00
|
|
|
public string Link { get; set; }
|
2020-02-10 22:44:18 +00:00
|
|
|
[DisplayName("License text"), Column(TypeName = "longtext"), StringLength(131072),
|
|
|
|
|
DataType(DataType.MultilineText)]
|
2019-05-29 21:13:09 +01:00
|
|
|
public string Text { get; set; }
|
|
|
|
|
public virtual ICollection<MachinePhoto> Photos { get; set; }
|
|
|
|
|
public virtual ICollection<OwnedMachinePhoto> OwnedMachinePhotos { get; set; }
|
2019-05-27 17:42:57 +01:00
|
|
|
}
|
|
|
|
|
}
|