refactoring messages

This commit is contained in:
Paul Schneider 2018-02-03 20:17:29 +01:00
commit 13bdf7463d
44 changed files with 602 additions and 303 deletions

View file

@ -29,12 +29,17 @@ namespace Yavsc.Models.Calendar
/// <summary>
/// Provided event.
/// </summary>
public class ProvidedEvent : YaEvent {
public class ProvidedEvent : BaseEvent {
/// <summary>
/// The privacy.
/// </summary>
[Required]
public Publishing Privacy;
}
public override string CreateBody()
{
throw new System.NotImplementedException();
}
}
}