vgquotes/Src/VideoGameQuotes.Api/QuoteFlag.cs

17 lines
464 B
C#
Raw Normal View History

2011-02-09 00:05:32 +00:00
using System;
using Portoa.Persistence;
namespace VideoGameQuotes.Api {
public class QuoteFlag : Entity<QuoteFlag, int> {
public QuoteFlag() {
Created = DateTime.UtcNow;
Type = QuoteFlagType.Other;
}
2011-02-09 00:05:32 +00:00
public virtual User User { get; set; }
public virtual Quote Quote { get; set; }
public virtual DateTime Created { get; set; }
public virtual string Comment { get; set; }
public virtual QuoteFlagType Type { get; set; }
2011-02-09 00:05:32 +00:00
}
}