doc : Architecute
This commit is contained in:
parent
b3444ac4e2
commit
bba719c8c1
745 changed files with 224 additions and 97283 deletions
15
src/Yavsc.Abstract/domains/musical/LicenceModele.cs
Normal file
15
src/Yavsc.Abstract/domains/musical/LicenceModele.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
namespace Yavsc.Domains.Musical;
|
||||
public class LicenceTemplate
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public string Nom { get; set; }
|
||||
public string Texte { get; set; } // ou Uri vers le texte officiel
|
||||
public bool EstLibre { get; set; }
|
||||
public bool PermetUsageCommercial { get; set; }
|
||||
public bool PermetModification { get; set; }
|
||||
public bool ExigePartageAIdentique { get; set; } // ShareAlike
|
||||
public bool ExigeAttribution { get; set; } // BY
|
||||
public bool AdminValidated { get; set; }
|
||||
public DateTimeOffset DateValidation { get; set; }
|
||||
public string AdminValidateurId { get; set; } // FK vers ApplicationUser
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue