Files
yavsc/Yavsc.Client/IAccountBalance.cs
2016-07-20 13:52:38 +02:00

10 lines
239 B
C#

namespace Yavsc.Models
{
public interface IAccountBalance
{
long ContactCredits { get; set; }
decimal Credits { get; set; }
IApplicationUser Owner { get; set; }
string UserId { get; set; }
}
}