14 lines
		
	
	
		
			253 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			253 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Text;
 | 
						|
 | 
						|
namespace APT.BaseData.Domain.ApiModel.BD
 | 
						|
{
 | 
						|
    public class TimeModel
 | 
						|
    {
 | 
						|
        public DateTime Start_time { get; set; }
 | 
						|
 | 
						|
        public DateTime End_time { get; set; }
 | 
						|
    }
 | 
						|
}
 |