14 lines
		
	
	
		
			306 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			306 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Text;
 | 
						|
 | 
						|
namespace APT.MS.Domain.ApiModel.SC.PT
 | 
						|
{
 | 
						|
    public class IntentionalGuidModel
 | 
						|
    {
 | 
						|
        public Guid? GUIDELINES_ID { get; set; }
 | 
						|
        public string GUIDELINES_NAME { get; set; }
 | 
						|
        public string RATE { get; set; }
 | 
						|
    }
 | 
						|
}
 |