* 'vnext' of https://github.com/pazof/yavsc: (38 commits) fixe le premier démarrage Corrige le mot de passe perdu d'un utilisateur au nom contenant des espaces traductions fixe la reccupération du mot de passe refabrique: MEP index blogs Specialized the book query notification Updated the Licence validity cleaned up log warnings label event date cleans the code Adds support for SIREN exceptions to validation from the external provider layout trads refactoring refactoring Google maps: a map image implements an AccessDenied page A better layout ... # Conflicts: # Yavsc.Api/project.lock.json # Yavsc.Client/Yavsc.Client.csproj # Yavsc.Client/packages.config # sendmsg/Program.cs
40 lines
1,015 B
C#
40 lines
1,015 B
C#
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Yavsc.Models.Market;
|
|
|
|
namespace Yavsc.Models
|
|
{
|
|
public class Activity
|
|
{
|
|
|
|
[StringLength(512),Required,Key]
|
|
public string Code {get; set;}
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[StringLength(512),Required()]
|
|
public string Name {get; set;}
|
|
|
|
public string Description {get; set;}
|
|
/// <summary>
|
|
/// Name to associate to a performer in this activity domain
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public string ActorDenomination {get; set;}
|
|
|
|
public string Photo {get; set;}
|
|
|
|
[InverseProperty("Context")]
|
|
public List<Service> Services { get; set; }
|
|
|
|
/// <summary>
|
|
/// Moderation settings
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
string ModeratorGroupName { get; set; }
|
|
|
|
}
|
|
}
|