2025-07-08 14:01:10 +08:00

15 lines
424 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
{
public partial class ImVNotifyTaskPhone
{
public string Id { get; set; } = null!;
public string TaskId { get; set; } = null!;
public string PhoneNo { get; set; } = null!;
public string? FullName { get; set; }
public string TaskName { get; set; } = null!;
}
}