yavsc/Yavsc.Api/Model/Workflow/Activity.cs

42 lines
1 KiB
C#
Raw Normal View History

2016-05-17 18:22:18 +02:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
2016-06-14 03:37:57 +02:00
using Yavsc.Models.Market;
2016-05-17 18:22:18 +02:00
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; }
2016-05-30 12:29:58 +02:00
/// <summary>
/// Moderation settings
/// </summary>
/// <returns></returns>
string ModeratorGroupName { get; set; }
2016-05-17 18:22:18 +02:00
2016-06-14 03:37:57 +02:00
2016-05-17 18:22:18 +02:00
}
}