Initial commit: open-source release of atakanozban.com
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
|
||||
namespace atakanozbancom.Models.classes
|
||||
{
|
||||
[Table("sitesettings")]
|
||||
public class sitesetting
|
||||
{
|
||||
[Key]
|
||||
public int id { get; set; }
|
||||
|
||||
[StringLength(500)]
|
||||
[Column("wallpaper")]
|
||||
public string wallpaper { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user