14 lines
253 B
C#
14 lines
253 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace SupplierManager.Models;
|
|||
|
|
|
|||
|
|
public partial class AasUserPermission
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
public string? ProxyClass { get; set; }
|
|||
|
|
|
|||
|
|
public string? ProxyRegion { get; set; }
|
|||
|
|
}
|