16 lines
444 B
C#
16 lines
444 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class VW_Expenditure2FeeCalculation
|
|
{
|
|
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 Nullable<int> WksSubjectToFee { get; set; }
|
|
}
|
|
}
|