Squash and merge of version-0.1 Co-authored-by: James Wampler <james@wamp.dev> Co-committed-by: James Wampler <james@wamp.dev>
13 lines
370 B
C#
13 lines
370 B
C#
namespace MicCheck.Api.Features;
|
|
|
|
public class FeatureUsageDaily
|
|
{
|
|
public int Id { get; init; }
|
|
public int EnvironmentId { get; init; }
|
|
public int FeatureId { get; init; }
|
|
public required string FeatureName { get; set; }
|
|
public DateOnly UsageDate { get; init; }
|
|
public long Count { get; set; }
|
|
public DateTimeOffset UpdatedAt { get; set; }
|
|
}
|