mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 12:43:13 +00:00
13 lines
No EOL
313 B
C#
13 lines
No EOL
313 B
C#
using System;
|
|
|
|
namespace Roadie.Library.Models.Users
|
|
{
|
|
[Serializable]
|
|
public abstract class UserRatingBase
|
|
{
|
|
public bool IsDisliked { get; set; }
|
|
public bool IsFavorite { get; set; }
|
|
public DateTime? RatedDate { get; set; }
|
|
public short? Rating { get; set; }
|
|
}
|
|
} |