18 lines
351 B
C#
18 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HTCoreServiceApp.Models;
|
|
|
|
public partial class RegisterModule
|
|
{
|
|
public int DriverId { get; set; }
|
|
|
|
public string? AssemblyName { get; set; }
|
|
|
|
public string? ClassName { get; set; }
|
|
|
|
public string? ClassFullName { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
}
|