Refactoring book query

This commit is contained in:
Paul Schneider 2019-09-17 11:12:05 +01:00
commit 3e1dc7b80f
9 changed files with 152 additions and 18 deletions

View file

@ -0,0 +1,12 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Interfaces;
namespace Yavsc.Models.Messaging
{
public interface IAnnounce : IOwned {
Reason For { get; set; }
string Message { get; set; }
}
}