Refactoring book query

This commit is contained in:
2019-09-17 11:12:05 +01:00
parent 7559b09103
commit d36c594027
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; }
}
}