first push

This commit is contained in:
2026-05-16 21:29:22 +02:00
commit 25edd4fac7
68 changed files with 3475 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ModelsLib
{
[Table("T_ShootingData")]
public class ShootingData
{
public ShootingData(string key, bool isPhotosSelected, int maxChoice, DateTime shootingDate, string instagramName)
{
Key = key;
IsPhotosSelected = isPhotosSelected;
MaxChoice = maxChoice;
ShootingDate = shootingDate;
InstagramName = instagramName;
}
[Key]
public string Key { get; set; }
public bool IsPhotosSelected { get; set; }
public int MaxChoice { get; set; }
public DateTime ShootingDate { get; set; }
public string InstagramName { get; set; }
}
}