mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-22 20:44:23 +00:00
22 lines
592 B
C#
22 lines
592 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Oqtane.Models;
|
|
|
|
namespace [Owner].Module.[Module].Models
|
|
{
|
|
[Table("[Owner][Module]")]
|
|
public class [Module] : IAuditable
|
|
{
|
|
[Key]
|
|
public int [Module]Id { get; set; }
|
|
public int ModuleId { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
public DateTime CreatedOn { get; set; }
|
|
public string ModifiedBy { get; set; }
|
|
public DateTime ModifiedOn { get; set; }
|
|
}
|
|
}
|