Files
yavsc/YavscLib/Billing/IAccountBalance.cs
2017-03-02 23:47:44 +01:00

10 lines
191 B
C#

namespace YavscLib
{
public interface IAccountBalance
{
long ContactCredits { get; set; }
decimal Credits { get; set; }
string UserId { get; set; }
}
}