mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-26 19:28:01 +00:00
10 lines
279 B
C#
10 lines
279 B
C#
using System;
|
|
using System.Numerics;
|
|
|
|
namespace PodNoms.Api.Models.ViewModels {
|
|
public class ProfileLimitsViewModel {
|
|
public decimal StorageQuota { get; set; }
|
|
public decimal StorageUsed { get; set; }
|
|
public ProfileViewModel User { get; set; }
|
|
}
|
|
} |