16 lines
447 B
C#
16 lines
447 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class FeeCalculation
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public System.Guid ExpenditureCategoryId { get; set; }
|
|
public int MinShot { get; set; }
|
|
public int MaxShot { get; set; }
|
|
public int Quantity { get; set; }
|
|
public virtual ExpenditureCategory ExpenditureCategory { get; set; }
|
|
}
|
|
}
|