Files
yavsc/YavscLib/Workflow/IAccountBalance.cs
2017-05-12 12:15:57 +02:00

10 lines
191 B
C#

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