14 lines
352 B
C#
14 lines
352 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class User2ExpenditureCategory
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public System.Guid UserId { get; set; }
|
|
public System.Guid ExpenditureCatagoryId { get; set; }
|
|
public int PermissionType { get; set; }
|
|
}
|
|
}
|