yavsc/YavscLib/Workflow/IAccountBalance.cs

10 lines
191 B
C#

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