15 lines
404 B
C#
15 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class View2CostCenter
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public System.Guid ViewId { get; set; }
|
|
public System.Guid CostCenterId { get; set; }
|
|
public virtual CreditDepartment CreditDepartment { get; set; }
|
|
public virtual View View { get; set; }
|
|
}
|
|
}
|