21 lines
590 B
C#
21 lines
590 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class GLAccount
|
|
{
|
|
public GLAccount()
|
|
{
|
|
this.Clients = new List<Client>();
|
|
this.ExpenditureCategories = new List<ExpenditureCategory>();
|
|
}
|
|
|
|
public System.Guid Id { get; set; }
|
|
public string GLNumber { get; set; }
|
|
public string Name { get; set; }
|
|
public virtual ICollection<Client> Clients { get; set; }
|
|
public virtual ICollection<ExpenditureCategory> ExpenditureCategories { get; set; }
|
|
}
|
|
}
|