18 lines
613 B
C#
18 lines
613 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class Expenditure2Expenditure
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public System.Guid ParentId { get; set; }
|
|
public System.Guid ChildId { get; set; }
|
|
public Nullable<int> FactorType { get; set; }
|
|
public Nullable<int> ProcessOrder { get; set; }
|
|
public Nullable<decimal> FactorInt { get; set; }
|
|
public virtual ExpenditureCategory ExpenditureCategory { get; set; }
|
|
public virtual ExpenditureCategory ExpenditureCategory1 { get; set; }
|
|
}
|
|
}
|