- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace lyfzAttendance.Model
- {
- [Serializable]
- public class AttendanceRecord
- {
- public string no { get; set; } = "";
- public string datetime { get; set; } = "";
- }
- }
|