﻿using System;
using System.Collections.Generic;
using System.Text;

namespace IndianHealthService.BMXNet.Model
{
    /// <summary>
    /// This object represents the RPMS Division.  
    /// </summary>
    /// <remarks>
    /// All BMX Broker connections must have an estalibshed Division</remarks>
    public interface Division
    {
        String Name { get; }
        String Ien { get; }
    }
}
