Initial Commit
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
namespace SportsDivision.Application.DTOs;
|
||||
public class ScoringConstantDto { public int ScoringConstantId { get; set; } public int EventId { get; set; } public string EventName { get; set; } = string.Empty; public decimal A { get; set; } public decimal B { get; set; } public decimal C { get; set; } public string Unit { get; set; } = string.Empty; }
|
||||
public class ScoringConstantUpdateDto { public int ScoringConstantId { get; set; } public decimal A { get; set; } public decimal B { get; set; } public decimal C { get; set; } }
|
||||
Reference in New Issue
Block a user